projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e872f6
)
(Fcurrent_time_zone): Accept spaces in timezone
author
Gerd Moellmann
<gerd@gnu.org>
Thu, 5 Apr 2001 14:04:44 +0000
(14:04 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Thu, 5 Apr 2001 14:04:44 +0000
(14:04 +0000)
names.
src/editfns.c
patch
|
blob
|
history
diff --git
a/src/editfns.c
b/src/editfns.c
index 11ad0080d4f62890725fa08e4eccedebb035747d..2c443ca5d240df63acbad0ec7b2fa1e56f501e95 100644
(file)
--- a/
src/editfns.c
+++ b/
src/editfns.c
@@
-1767,7
+1767,7
@@
the data it can't find.")
/* On Japanese w32, we can get a Japanese string as time
zone name. Don't accept that. */
char *p;
- for (p = s; *p &&
isalnum (*p
); ++p)
+ for (p = s; *p &&
(isalnum (*p) || *p == ' '
); ++p)
;
if (p == s || *p)
s = NULL;